From 47d4533db57d09af3ae2359a3b171220154ca176 Mon Sep 17 00:00:00 2001 From: oliskoli Date: Tue, 3 Jun 2008 16:27:52 +0000 Subject: [PATCH] ik3d: Fix errors when compiling without expat. --- gpsbabel/ik3d.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/gpsbabel/ik3d.c b/gpsbabel/ik3d.c index 8685886d4..9a5c50c45 100644 --- a/gpsbabel/ik3d.c +++ b/gpsbabel/ik3d.c @@ -30,6 +30,8 @@ static arglist_t ikt_args[] = #define MYNAME "ikt" +static char *name, *text; + #if ! HAVE_LIBEXPAT void ikt_rd_init(const char *fname) @@ -42,11 +44,15 @@ ikt_read(void) { } +static void +ikt_object_end(void) +{ +} + #else static route_head *track; static waypoint *waypt; -static char *name, *text; static xg_callback iktobj_waypt, iktobj_type, iktobj_name, iktobj_trkpt, iktobj_text; -- 2.30.2